home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / pc / files / t_unix / j109lxa4.tar / Makefile < prev    next >
Makefile  |  1994-06-04  |  33KB  |  560 lines

  1. #
  2. # I must be nuts... JNOS port to Linux
  3. # Needless to say, this is just begging for trouble
  4. #
  5. # Why this instead of WAMPES?  I want a nice, strict firewall between the
  6. # packet users and the rest of the system.  Unfortunately, WAMPES spawns login
  7. # for all incoming connects (and doesn't work too nicely with DOS versions,
  8. # since they default to line mode and local echo) and expects the system to
  9. # provide services such as SMTP.  Sorry guys, I won't buy it....
  10. #
  11. # ++bsa (bsa@kf8nh.wariat.org) 01/19/93
  12. #
  13.  
  14. CC = gcc
  15. RM = rm -f
  16. AR = ar rcs
  17.  
  18. #
  19. # Known patches are:
  20. #
  21. # -DNO_STRTOUL        System has no strtoul()
  22. # -DNO_GETTOD        System uses ftime() instead of gettimeofday()
  23. # -DNO_STRCASECMP    We must supply strcasecmp()
  24. # -DNO_STRNCASECMP    No strncasecmp() (may not be tied to NO_STRCASECMP)
  25. # -DLITTLE_ENDIAN    Intel byte ordering, vs. Motorola
  26. # -DNCURSES_182_BUG    Work around ncurses 1.8.2 bug (doesn't fully work)
  27. #
  28. # SCO needs NO_STRTOUL, NO_GETTOD, NO_STRCASECMP, NO_STRNCASECMP, LITTLE_ENDIAN
  29. # Linux needs LITTLE_ENDIAN
  30. # Be aware that the non-LITTLE_ENDIAN code has not yet been tested; and there
  31. # are *no* definitions for thread switching on such systems.
  32. #
  33. PATCHES = -DLITTLE_ENDIAN -DNCURSES_182_BUG -DBSAHAX
  34. PATCHES = -DLITTLE_ENDIAN
  35.  
  36. #
  37. # Your curses library.  Linux wants ncurses; System V wants curses; BSD wants
  38. # curses, termcap, and major work to substitute for missing features in BSD
  39. # curses.  (Or install ncurses.)
  40. #
  41. # Slackware 1.1.0 and later use the convention of the ncurses headers with the
  42. # traditional names in /usr/include/ncurses; sources compiled for BSD curses
  43. # compile as is, for ncurses sources use -I/usr/include/ncurses and the source
  44. # need not be changed.  This is a Good Thing.  (If you're not using ncurses,
  45. # you don't need the ICURSES line.)  If your ncurses isn't installed that way,
  46. # you may want to edit curses.c to use ncurses.h instead of curses.h and use
  47. # -I/usr/local/include and -L/usr/local/lib here, or whatever you used to
  48. # install ncurses.
  49. #
  50. ICURSES = -I/usr/include/ncurses
  51. LCURSES = -lncurses
  52.  
  53. #
  54. # Warnings --- disable for less noise, enable for more certainty :-)  gcc will
  55. # whine about things like partly bracketed initializers if you specify -W, but
  56. # this can be ignored unless you're trying to port JNOS to VMS....
  57. #
  58. # JNOS/Linux is much cleaner in this area, but there are some portability
  59. # warnings still (-Wtraditional) and some non-globally-prototyped functions.
  60. # I will probably re-target ALPHA.4 to Doug Crompton's cleaned-up code instead
  61. # of fixing these myself.
  62. #
  63. WARNINGS = -W -Wimplicit -Wreturn-type -Wunused -Wswitch -Wpointer-arith \
  64.        -Wcast-qual -Wcast-align -Waggregate-return -Wparentheses \
  65.        -Wuninitialized -Wformat -Wtraditional -Wconversion \
  66.        -Wstrict-prototypes -Wmissing-prototypes
  67.  
  68. # This is for my use in testing.  Don't worry about it unless you want to be
  69. # able to build custom versions.
  70. NOS = nos
  71.  
  72. # I strongly advise leaving the debugging information in, because this is NOT
  73. # production-quality code.  -g1 instead of -g3 will make nos smaller, however,
  74. # and leaving off -g entirely will make it a LOT smaller.
  75. DEBUG = -g3
  76. DBGLIB = -lg
  77.  
  78. CFLAGS = -DUNIX -O2 $(DEBUG) $(PATCHES) $(WARNINGS) $(ICURSES)
  79.  
  80. all:    $(NOS) u2j
  81.  
  82. hardware.h: unix.h
  83.     cp unix.h hardware.h
  84.  
  85. CLIENTS= telnet.o ftpcli.o finger.o smtpcli.o hop.o \
  86.         tip.o nntpcli.o popcli.o dialer.o rlogin.o callcli.o \
  87.         mailcli.o pop2cli.o pop3cli.o rdate.o
  88.  
  89. SERVERS= ttylink.o ftpserv.o smisc.o smtpserv.o convers.o \
  90.         nntpserv.o fingerd.o mboxcmd.o mailbox.o mailbox2.o mailfor.o \
  91.         bmutil.o popserv.o forward.o tipmail.o mailutil.o \
  92.         expire.o calldbd.o buckbook.o pop2serv.o pop3serv.o timed.o
  93.  
  94. BOOTP=    bootp.o bootpd.o bootpcmd.o bootpdip.o
  95.  
  96. INTERNET= tcpcmd.o tcpuser.o tcptimer.o tcpout.o tcpin.o \
  97.     tcpsubr.o tcphdr.o udpcmd.o udp.o udphdr.o \
  98.     domain.o domhdr.o ripcmd.o rip.o \
  99.     ipcmd.o ip.o iproute.o iphdr.o \
  100.     icmpcmd.o icmp.o icmpmsg.o icmphdr.o \
  101.     arpcmd.o arp.o arphdr.o rarp.o \
  102.     netuser.o rspf.o rspfcmd.o rspfhdr.o
  103.  
  104. AX25=   ax25cmd.o ax25user.o ax25.o axheard.o ax25aar.o \
  105.     lapbtime.o lapb.o kiss.o ax25subr.o ax25hdr.o ax25mail.o
  106.  
  107. NETROM=    nrcmd.o nr4user.o nr4timer.o nr4.o nr4subr.o nr4hdr.o \
  108.     nr3.o nrs.o nrhdr.o nr4mail.o
  109.  
  110. PPP=    asy.o ppp.o pppcmd.o pppfsm.o ppplcp.o \
  111.     ppppap.o pppipcp.o pppdump.o \
  112.     slhc.o slhcdump.o slip.o
  113.  
  114. NET=    ftpsubr.o sockcmd.o sockuser.o socket.o sockutil.o  \
  115.     iface.o timer.o ttydriv.o cmdparse.o \
  116.     mbuf.o misc.o pathname.o audit.o files.o  \
  117.     kernel.o ksubr.o getopt.o wildmat.o lzw.o \
  118.     getline.o devparam.o
  119.  
  120. DUMP=     trace.o rspfdump.o \
  121.     kissdump.o ax25dump.o arpdump.o nrdump.o rwhodump.o \
  122.     ipdump.o icmpdump.o udpdump.o tcpdump.o ripdump.o
  123.  
  124. # at and xmodem, at least, don't really belong here....
  125. UNIX=    unix.o unixasy.o dirutil.o at.o lcsum.o curses.o xmodem.o glob.o \
  126.     sessmgr.o dumbcons.o rawcons.o
  127.  
  128. $(NOS): main.o config.o version.o session.o clients.a servers.a internet.a \
  129.     net.a netrom.a ax25.a unix.a dump.a ppp.a bootp.a
  130.     $(CC) -c $(CFLAGS) version.c
  131.     $(CC) $(CFLAGS) -o $(NOS) main.o config.o version.o session.o \
  132.         clients.a servers.a internet.a net.a netrom.a ax25.a unix.a \
  133.         dump.a ppp.a bootp.a $(LCURSES) $(DBGLIB)
  134.  
  135. clean:
  136.     $(RM) *.[oa] hardware.h
  137.  
  138. clients.a: $(CLIENTS)
  139.     $(RM) clients.a
  140.     $(AR) clients.a $(CLIENTS)
  141.  
  142. servers.a: $(SERVERS)
  143.     $(RM) servers.a
  144.     $(AR) servers.a $(SERVERS)
  145.  
  146. ppp.a: $(PPP)
  147.     $(RM) ppp.a
  148.     $(AR) ppp.a $(PPP)
  149.  
  150. bootp.a: $(BOOTP)
  151.     $(RM) bootp.a
  152.     $(AR) bootp.a $(BOOTP)
  153.  
  154. internet.a: $(INTERNET)
  155.     $(RM) internet.a
  156.     $(AR) internet.a $(INTERNET)
  157.  
  158. ax25.a: $(AX25)
  159.     $(RM) ax25.a
  160.     $(AR) ax25.a $(AX25)
  161.  
  162. netrom.a: $(NETROM)
  163.     $(RM) netrom.a
  164.     $(AR) netrom.a $(NETROM)
  165.  
  166. net.a: $(NET)
  167.     $(RM) net.a
  168.     $(AR) net.a $(NET)
  169.  
  170. dump.a: $(DUMP)
  171.     $(RM) dump.a
  172.     $(AR) dump.a $(DUMP)
  173.  
  174. unix.a: $(UNIX)
  175.     $(RM) unix.a
  176.     $(AR) unix.a $(UNIX)
  177.  
  178. arp.o : arp.c global.h config.h unixtm.h mbuf.h timer.h iface.h proc.h socket.h \
  179.   sockaddr.h ax25.h ip.h internet.h lapb.h icmp.h session.h hardware.h ftpcli.h \
  180.   ftp.h dirutil.h telnet.h arp.h rspf.h 
  181. arpcmd.o : arpcmd.c global.h config.h unixtm.h mbuf.h timer.h internet.h ip.h \
  182.   iface.h proc.h socket.h sockaddr.h ax25.h lapb.h arp.h netuser.h cmdparse.h \
  183.   commands.h rspf.h domain.h session.h hardware.h ftpcli.h ftp.h dirutil.h telnet.h 
  184. arpdump.o : arpdump.c global.h config.h unixtm.h mbuf.h arp.h iface.h proc.h \
  185.   timer.h socket.h sockaddr.h netuser.h trace.h 
  186. arphdr.o : arphdr.c global.h config.h unixtm.h mbuf.h arp.h iface.h proc.h timer.h \
  187.   socket.h sockaddr.h 
  188. asy.o : asy.c global.h config.h unixtm.h proc.h mbuf.h timer.h iface.h socket.h \
  189.   sockaddr.h netuser.h slhc.h ip.h internet.h tcp.h unixasy.h asy.h ax25.h lapb.h \
  190.   kiss.h pktdrvr.h ppp.h slip.h nrs.h commands.h 
  191. at.o : at.c global.h config.h unixtm.h timer.h cmdparse.h socket.h mbuf.h proc.h \
  192.   sockaddr.h 
  193. audit.o : audit.c global.h config.h unixtm.h mbuf.h 
  194. ax25.o : ax25.c global.h config.h unixtm.h mbuf.h iface.h proc.h timer.h socket.h \
  195.   sockaddr.h arp.h slip.h slhc.h ip.h internet.h tcp.h netuser.h ax25.h lapb.h \
  196.   netrom.h nr4.h devparam.h trace.h pktdrvr.h commands.h 
  197. ax25aar.o : ax25aar.c global.h config.h unixtm.h mbuf.h timer.h iface.h proc.h \
  198.   socket.h sockaddr.h ax25.h ip.h internet.h lapb.h icmp.h session.h hardware.h \
  199.   ftpcli.h ftp.h dirutil.h telnet.h arp.h rip.h udp.h netuser.h cmdparse.h 
  200. ax25cmd.o : ax25cmd.c global.h config.h unixtm.h mbuf.h timer.h proc.h iface.h \
  201.   socket.h sockaddr.h ax25.h ip.h internet.h lapb.h cmdparse.h mailbox.h tipmail.h \
  202.   session.h hardware.h ftpcli.h ftp.h dirutil.h telnet.h tty.h nr4.h commands.h \
  203.   pktdrvr.h netrom.h 
  204. ax25dump.o : ax25dump.c global.h config.h unixtm.h mbuf.h ax25.h ip.h iface.h \
  205.   proc.h timer.h socket.h sockaddr.h internet.h lapb.h trace.h 
  206. ax25hdr.o : ax25hdr.c global.h config.h unixtm.h mbuf.h ax25.h ip.h iface.h \
  207.   proc.h timer.h socket.h sockaddr.h internet.h lapb.h 
  208. ax25mail.o : ax25mail.c global.h config.h unixtm.h proc.h mbuf.h timer.h iface.h \
  209.   socket.h sockaddr.h pktdrvr.h ax25.h ip.h internet.h lapb.h usock.h /usr/include/time.h \
  210.   lzw.h tcp.h netuser.h udp.h netrom.h nr4.h session.h hardware.h ftpcli.h ftp.h \
  211.   dirutil.h telnet.h mailbox.h tipmail.h ax25mail.h 
  212. ax25subr.o : ax25subr.c global.h config.h unixtm.h mbuf.h timer.h ax25.h ip.h \
  213.   iface.h proc.h socket.h sockaddr.h internet.h lapb.h 
  214. ax25user.o : ax25user.c global.h config.h unixtm.h mbuf.h timer.h iface.h proc.h \
  215.   socket.h sockaddr.h lapb.h ax25.h ip.h internet.h 
  216. axheard.o : axheard.c global.h config.h unixtm.h mbuf.h iface.h proc.h timer.h \
  217.   socket.h sockaddr.h ax25.h ip.h internet.h lapb.h 
  218. beta.o : beta.c 
  219. bmutil.o : bmutil.c global.h config.h unixtm.h ftpserv.h sockaddr.h timer.h \
  220.   smtp.h proc.h mbuf.h usock.h lzw.h tcp.h iface.h socket.h internet.h ip.h netuser.h \
  221.   udp.h netrom.h ax25.h lapb.h nr4.h telnet.h session.h hardware.h ftpcli.h ftp.h \
  222.   dirutil.h files.h mailbox.h tipmail.h cmdparse.h bm.h mailutil.h 
  223. bootp.o : bootp.c global.h config.h unixtm.h mbuf.h socket.h proc.h timer.h \
  224.   sockaddr.h netuser.h udp.h iface.h internet.h ip.h domain.h rip.h cmdparse.h \
  225.   bootp.h 
  226. bootpcmd.o : bootpcmd.c global.h config.h unixtm.h cmdparse.h bootpd.h socket.h \
  227.   mbuf.h proc.h timer.h sockaddr.h arp.h iface.h netuser.h udp.h internet.h ip.h 
  228. bootpd.o : bootpd.c global.h config.h unixtm.h bootp.h socket.h mbuf.h proc.h \
  229.   timer.h sockaddr.h cmdparse.h iface.h bootpd.h arp.h udp.h internet.h ip.h netuser.h 
  230. bootpdip.o : bootpdip.c global.h config.h unixtm.h arp.h mbuf.h iface.h proc.h \
  231.   timer.h socket.h sockaddr.h netuser.h pktdrvr.h bootpd.h 
  232. buckbook.o : buckbook.c global.h config.h unixtm.h files.h cmdparse.h ftp.h 
  233. callcli.o : callcli.c global.h config.h unixtm.h mbuf.h socket.h proc.h timer.h \
  234.   sockaddr.h session.h hardware.h ftpcli.h ftp.h dirutil.h telnet.h netuser.h \
  235.   commands.h tty.h 
  236. calldbd.o : calldbd.c global.h config.h unixtm.h files.h mbuf.h socket.h proc.h \
  237.   timer.h sockaddr.h session.h hardware.h ftpcli.h ftp.h dirutil.h telnet.h commands.h \
  238.   mailbox.h ax25.h ip.h iface.h internet.h lapb.h tipmail.h 
  239. cmdparse.o : cmdparse.c global.h config.h unixtm.h proc.h mbuf.h timer.h cmdparse.h \
  240.   session.h hardware.h ftpcli.h ftp.h dirutil.h telnet.h pktdrvr.h iface.h socket.h \
  241.   sockaddr.h 
  242. comment.o : comment.c 
  243. config.o : config.c global.h config.h unixtm.h mbuf.h timer.h proc.h iface.h \
  244.   socket.h sockaddr.h ip.h internet.h tcp.h netuser.h udp.h lapb.h ax25.h kiss.h \
  245.   netrom.h nr4.h pktdrvr.h ppp.h slip.h slhc.h arp.h icmp.h session.h hardware.h \
  246.   ftpcli.h ftp.h dirutil.h telnet.h usock.h lzw.h cmdparse.h commands.h mailbox.h \
  247.   tipmail.h mailcli.h daemon.h ax25mail.h nr4mail.h bootp.h rspf.h main.h trace.h 
  248. convers.o : convers.c global.h config.h unixtm.h mailbox.h timer.h ax25.h ip.h \
  249.   mbuf.h iface.h proc.h socket.h sockaddr.h internet.h lapb.h tipmail.h netuser.h \
  250.   pktdrvr.h cmdparse.h usock.h lzw.h tcp.h udp.h netrom.h nr4.h session.h hardware.h \
  251.   ftpcli.h ftp.h dirutil.h telnet.h files.h commands.h 
  252. curses.o : curses.c hardware.h global.h config.h unixtm.h proc.h mbuf.h timer.h \
  253.   socket.h sockaddr.h tty.h session.h ftpcli.h ftp.h dirutil.h telnet.h sessmgr.h 
  254. devparam.o : devparam.c global.h config.h unixtm.h devparam.h 
  255. dialer.o : dialer.c global.h config.h unixtm.h mbuf.h timer.h proc.h iface.h \
  256.   socket.h sockaddr.h netuser.h commands.h unixasy.h asy.h tty.h session.h hardware.h \
  257.   ftpcli.h ftp.h dirutil.h telnet.h cmdparse.h devparam.h icmp.h internet.h ip.h \
  258.   files.h main.h trace.h 
  259. dirutil.o : dirutil.c global.h config.h unixtm.h proc.h mbuf.h timer.h session.h \
  260.   hardware.h ftpcli.h ftp.h dirutil.h telnet.h commands.h 
  261. domain.o : domain.c global.h config.h unixtm.h mbuf.h netuser.h socket.h proc.h \
  262.   timer.h sockaddr.h ip.h iface.h internet.h cmdparse.h domain.h commands.h files.h \
  263.   getline.h 
  264. domhdr.o : domhdr.c global.h config.h unixtm.h mbuf.h domain.h proc.h timer.h 
  265. dumbcons.o : dumbcons.c config.h hardware.h global.h unixtm.h proc.h mbuf.h \
  266.   timer.h socket.h sockaddr.h tty.h session.h ftpcli.h ftp.h dirutil.h telnet.h \
  267.   sessmgr.h 
  268. expire.o : expire.c global.h config.h unixtm.h timer.h proc.h mbuf.h bm.h mailbox.h \
  269.   ax25.h ip.h iface.h socket.h sockaddr.h internet.h lapb.h tipmail.h smtp.h mailutil.h \
  270.   files.h 
  271. files.o : files.c global.h config.h unixtm.h netuser.h socket.h mbuf.h proc.h \
  272.   timer.h sockaddr.h files.h 
  273. finger.o : finger.c global.h config.h unixtm.h mbuf.h socket.h proc.h timer.h \
  274.   sockaddr.h session.h hardware.h ftpcli.h ftp.h dirutil.h telnet.h netuser.h \
  275.   commands.h tty.h 
  276. fingerd.o : fingerd.c global.h config.h unixtm.h files.h mbuf.h socket.h proc.h \
  277.   timer.h sockaddr.h session.h hardware.h ftpcli.h ftp.h dirutil.h telnet.h commands.h \
  278.   mailbox.h ax25.h ip.h iface.h internet.h lapb.h tipmail.h 
  279. forward.o : forward.c global.h config.h unixtm.h bm.h mailbox.h timer.h ax25.h \
  280.   ip.h mbuf.h iface.h proc.h socket.h sockaddr.h internet.h lapb.h tipmail.h smtp.h \
  281.   mailutil.h cmdparse.h usock.h lzw.h tcp.h netuser.h udp.h netrom.h nr4.h files.h 
  282. ftpcli.o : ftpcli.c global.h config.h unixtm.h mbuf.h session.h proc.h timer.h \
  283.   hardware.h ftpcli.h ftp.h dirutil.h telnet.h cmdparse.h tty.h socket.h sockaddr.h \
  284.   commands.h netuser.h files.h 
  285. ftpserv.o : ftpserv.c global.h config.h unixtm.h mbuf.h socket.h proc.h timer.h \
  286.   sockaddr.h ftp.h ftpserv.h dirutil.h files.h commands.h cmdparse.h 
  287. ftpsubr.o : ftpsubr.c global.h config.h unixtm.h mbuf.h socket.h proc.h timer.h \
  288.   sockaddr.h ftp.h ftpcli.h session.h hardware.h telnet.h dirutil.h 
  289. getline.o : getline.c global.h config.h unixtm.h 
  290. getopt.o : getopt.c global.h config.h unixtm.h 
  291. glob.o : glob.c dirutil.h global.h config.h unixtm.h 
  292. hop.o : hop.c global.h config.h unixtm.h mbuf.h usock.h /usr/include/time.h \
  293.   lzw.h proc.h timer.h tcp.h iface.h socket.h sockaddr.h internet.h ip.h netuser.h \
  294.   udp.h netrom.h ax25.h lapb.h nr4.h session.h hardware.h ftpcli.h ftp.h dirutil.h \
  295.   telnet.h domain.h commands.h tty.h cmdparse.h icmp.h 
  296. icmp.o : icmp.c global.h config.h unixtm.h mbuf.h iface.h proc.h timer.h socket.h \
  297.   sockaddr.h ip.h internet.h icmp.h session.h hardware.h ftpcli.h ftp.h dirutil.h \
  298.   telnet.h netuser.h 
  299. icmpcmd.o : icmpcmd.c global.h config.h unixtm.h icmp.h mbuf.h iface.h proc.h \
  300.   timer.h socket.h sockaddr.h internet.h ip.h session.h hardware.h ftpcli.h ftp.h \
  301.   dirutil.h telnet.h netuser.h cmdparse.h commands.h 
  302. icmpdump.o : icmpdump.c global.h config.h unixtm.h mbuf.h internet.h netuser.h \
  303.   socket.h proc.h timer.h sockaddr.h icmp.h iface.h ip.h session.h hardware.h \
  304.   ftpcli.h ftp.h dirutil.h telnet.h trace.h 
  305. icmphdr.o : icmphdr.c global.h config.h unixtm.h mbuf.h internet.h ip.h iface.h \
  306.   proc.h timer.h socket.h sockaddr.h icmp.h session.h hardware.h ftpcli.h ftp.h \
  307.   dirutil.h telnet.h 
  308. icmpmsg.o : icmpmsg.c global.h config.h unixtm.h 
  309. iface.o : iface.c global.h config.h unixtm.h mbuf.h proc.h timer.h iface.h socket.h \
  310.   sockaddr.h ip.h internet.h netuser.h ax25.h lapb.h arp.h pktdrvr.h cmdparse.h \
  311.   commands.h nr4.h mailbox.h tipmail.h 
  312. ip.o : ip.c global.h config.h unixtm.h mbuf.h timer.h internet.h netuser.h socket.h \
  313.   proc.h sockaddr.h iface.h pktdrvr.h ip.h icmp.h session.h hardware.h ftpcli.h \
  314.   ftp.h dirutil.h telnet.h 
  315. ipcmd.o : ipcmd.c global.h config.h unixtm.h mbuf.h internet.h timer.h netuser.h \
  316.   socket.h proc.h sockaddr.h iface.h session.h hardware.h ftpcli.h ftp.h dirutil.h \
  317.   telnet.h ip.h cmdparse.h commands.h rip.h udp.h rspf.h domain.h pktdrvr.h 
  318. ipdump.o : ipdump.c global.h config.h unixtm.h mbuf.h internet.h iface.h proc.h \
  319.   timer.h socket.h sockaddr.h ip.h trace.h netuser.h 
  320. iphdr.o : iphdr.c global.h config.h unixtm.h mbuf.h ip.h iface.h proc.h timer.h \
  321.   socket.h sockaddr.h internet.h 
  322. iproute.o : iproute.c global.h config.h unixtm.h mbuf.h socket.h proc.h timer.h \
  323.   sockaddr.h iface.h internet.h ip.h netuser.h icmp.h session.h hardware.h ftpcli.h \
  324.   ftp.h dirutil.h telnet.h rip.h udp.h trace.h pktdrvr.h bootp.h 
  325. kernel.o : kernel.c global.h config.h unixtm.h mbuf.h proc.h timer.h socket.h \
  326.   sockaddr.h daemon.h hardware.h 
  327. kiss.o : kiss.c global.h config.h unixtm.h mbuf.h iface.h proc.h timer.h socket.h \
  328.   sockaddr.h kiss.h devparam.h slip.h slhc.h ip.h internet.h tcp.h netuser.h asy.h \
  329.   ax25.h lapb.h pktdrvr.h 
  330. kissdump.o : kissdump.c global.h config.h unixtm.h mbuf.h kiss.h iface.h proc.h \
  331.   timer.h socket.h sockaddr.h devparam.h ax25.h ip.h internet.h lapb.h trace.h 
  332. ksubr.o : ksubr.c global.h config.h unixtm.h proc.h mbuf.h timer.h commands.h \
  333.   socket.h sockaddr.h 
  334. lapb.o : lapb.c global.h config.h unixtm.h mbuf.h timer.h ax25.h ip.h iface.h \
  335.   proc.h socket.h sockaddr.h internet.h lapb.h netrom.h nr4.h 
  336. lapbtime.o : lapbtime.c global.h config.h unixtm.h mbuf.h ax25.h ip.h iface.h \
  337.   proc.h timer.h socket.h sockaddr.h internet.h lapb.h 
  338. lcsum.o : lcsum.c global.h config.h unixtm.h ip.h mbuf.h iface.h proc.h timer.h \
  339.   socket.h sockaddr.h internet.h 
  340. lzw.o : lzw.c global.h config.h unixtm.h mbuf.h proc.h timer.h lzw.h usock.h \
  341.   /usr/include/time.h tcp.h iface.h socket.h sockaddr.h internet.h ip.h netuser.h \
  342.   udp.h netrom.h ax25.h lapb.h nr4.h session.h hardware.h ftpcli.h ftp.h dirutil.h \
  343.   telnet.h cmdparse.h 
  344. mailbox.o : mailbox.c global.h config.h unixtm.h timer.h proc.h mbuf.h socket.h \
  345.   sockaddr.h usock.h lzw.h tcp.h iface.h internet.h ip.h netuser.h udp.h netrom.h \
  346.   ax25.h lapb.h nr4.h session.h hardware.h ftpcli.h ftp.h dirutil.h telnet.h smtp.h \
  347.   ftpserv.h commands.h files.h bm.h mailbox.h tipmail.h mailutil.h pktdrvr.h ax25mail.h \
  348.   nr4mail.h cmdparse.h mailfor.h 
  349. mailbox2.o : mailbox2.c global.h config.h unixtm.h timer.h proc.h mbuf.h socket.h \
  350.   sockaddr.h usock.h lzw.h tcp.h iface.h internet.h ip.h netuser.h udp.h netrom.h \
  351.   ax25.h lapb.h nr4.h session.h hardware.h ftpcli.h ftp.h dirutil.h telnet.h smtp.h \
  352.   ftpserv.h commands.h files.h bm.h mailbox.h tipmail.h mailutil.h pktdrvr.h ax25mail.h \
  353.   nr4mail.h cmdparse.h mailfor.h authent.h 
  354. mailcli.o : mailcli.c global.h config.h unixtm.h timer.h proc.h mbuf.h socket.h \
  355.   sockaddr.h domain.h cmdparse.h files.h netuser.h mailcli.h daemon.h mailutil.h \
  356.   smtp.h 
  357. mailfor.o : mailfor.c global.h config.h unixtm.h files.h dirutil.h bm.h mailbox.h \
  358.   timer.h ax25.h ip.h mbuf.h iface.h proc.h socket.h sockaddr.h internet.h lapb.h \
  359.   tipmail.h smtp.h mailutil.h cmdparse.h pktdrvr.h mailfor.h 
  360. mailutil.o : mailutil.c global.h config.h unixtm.h socket.h mbuf.h proc.h timer.h \
  361.   sockaddr.h mailutil.h smtp.h files.h 
  362. main.o : main.c global.h config.h unixtm.h mbuf.h timer.h proc.h iface.h socket.h \
  363.   sockaddr.h ip.h internet.h tcp.h netuser.h udp.h ax25.h lapb.h kiss.h netrom.h \
  364.   nr4.h ftpcli.h ftp.h session.h hardware.h telnet.h dirutil.h tty.h usock.h lzw.h \
  365.   cmdparse.h commands.h daemon.h devparam.h domain.h files.h main.h mailbox.h \
  366.   tipmail.h remote.h trace.h mailutil.h smtp.h version.h 
  367. mboxcmd.o : mboxcmd.c global.h config.h unixtm.h timer.h proc.h mbuf.h socket.h \
  368.   sockaddr.h usock.h lzw.h tcp.h iface.h internet.h ip.h netuser.h udp.h netrom.h \
  369.   ax25.h lapb.h nr4.h session.h hardware.h ftpcli.h ftp.h dirutil.h telnet.h smtp.h \
  370.   ftpserv.h commands.h files.h bm.h mailbox.h tipmail.h mailutil.h pktdrvr.h ax25mail.h \
  371.   nr4mail.h cmdparse.h mailfor.h 
  372. mbuf.o : mbuf.c global.h config.h unixtm.h mbuf.h proc.h timer.h 
  373. misc.o : misc.c global.h config.h unixtm.h socket.h mbuf.h proc.h timer.h sockaddr.h 
  374. netuser.o : netuser.c global.h config.h unixtm.h netuser.h socket.h mbuf.h proc.h \
  375.   timer.h sockaddr.h domain.h 
  376. nntpcli.o : nntpcli.c global.h config.h unixtm.h timer.h cmdparse.h commands.h \
  377.   socket.h mbuf.h proc.h sockaddr.h usock.h lzw.h tcp.h iface.h internet.h ip.h \
  378.   netuser.h udp.h netrom.h ax25.h lapb.h nr4.h smtp.h mailutil.h files.h 
  379. nntpserv.o : nntpserv.c global.h config.h unixtm.h 
  380. nr3.o : nr3.c global.h config.h unixtm.h mbuf.h pktdrvr.h iface.h proc.h timer.h \
  381.   socket.h sockaddr.h netuser.h arp.h slip.h slhc.h ip.h internet.h tcp.h ax25.h \
  382.   lapb.h netrom.h nr4.h trace.h commands.h 
  383. nr4.o : nr4.c global.h config.h unixtm.h mbuf.h timer.h ax25.h ip.h iface.h \
  384.   proc.h socket.h sockaddr.h internet.h lapb.h netrom.h nr4.h cmdparse.h 
  385. nr4hdr.o : nr4hdr.c global.h config.h unixtm.h mbuf.h nr4.h timer.h ax25.h ip.h \
  386.   iface.h proc.h socket.h sockaddr.h internet.h lapb.h 
  387. nr4mail.o : nr4mail.c global.h config.h unixtm.h proc.h mbuf.h timer.h netrom.h \
  388.   iface.h socket.h sockaddr.h ax25.h ip.h internet.h lapb.h nr4.h session.h hardware.h \
  389.   ftpcli.h ftp.h dirutil.h telnet.h cmdparse.h commands.h mailbox.h tipmail.h \
  390.   nr4mail.h 
  391. nr4subr.o : nr4subr.c global.h config.h unixtm.h mbuf.h timer.h ax25.h ip.h \
  392.   iface.h proc.h socket.h sockaddr.h internet.h lapb.h netrom.h nr4.h 
  393. nr4timer.o : nr4timer.c global.h config.h unixtm.h mbuf.h timer.h ax25.h ip.h \
  394.   iface.h proc.h socket.h sockaddr.h internet.h lapb.h netrom.h nr4.h 
  395. nr4user.o : nr4user.c global.h config.h unixtm.h mbuf.h timer.h ax25.h ip.h \
  396.   iface.h proc.h socket.h sockaddr.h internet.h lapb.h netrom.h nr4.h 
  397. nrcmd.o : nrcmd.c config.h global.h unixtm.h mbuf.h ax25.h ip.h iface.h proc.h \
  398.   timer.h socket.h sockaddr.h internet.h lapb.h mailbox.h tipmail.h netrom.h nr4.h \
  399.   pktdrvr.h cmdparse.h session.h hardware.h ftpcli.h ftp.h dirutil.h telnet.h \
  400.   commands.h files.h 
  401. nrdump.o : nrdump.c global.h config.h unixtm.h mbuf.h netrom.h iface.h proc.h \
  402.   timer.h socket.h sockaddr.h ax25.h ip.h internet.h lapb.h nr4.h trace.h 
  403. nrhdr.o : nrhdr.c global.h config.h unixtm.h mbuf.h timer.h ax25.h ip.h iface.h \
  404.   proc.h socket.h sockaddr.h internet.h lapb.h netrom.h nr4.h 
  405. nrs.o : nrs.c global.h config.h unixtm.h mbuf.h iface.h proc.h timer.h socket.h \
  406.   sockaddr.h pktdrvr.h ax25.h ip.h internet.h lapb.h nrs.h asy.h trace.h commands.h 
  407. pathname.o : pathname.c global.h config.h unixtm.h dirutil.h 
  408. pop2cli.o : pop2cli.c global.h config.h unixtm.h timer.h proc.h mbuf.h netuser.h \
  409.   socket.h sockaddr.h cmdparse.h files.h mailcli.h daemon.h mailutil.h smtp.h 
  410. pop2serv.o : pop2serv.c global.h config.h unixtm.h mbuf.h cmdparse.h socket.h \
  411.   proc.h timer.h sockaddr.h files.h smtp.h mailcli.h daemon.h dirutil.h 
  412. pop3cli.o : pop3cli.c global.h config.h unixtm.h timer.h proc.h mbuf.h netuser.h \
  413.   socket.h sockaddr.h cmdparse.h files.h mailcli.h daemon.h mailutil.h smtp.h 
  414. pop3serv.o : pop3serv.c global.h config.h unixtm.h mbuf.h cmdparse.h socket.h \
  415.   proc.h timer.h sockaddr.h files.h smtp.h dirutil.h 
  416. popcli.o : popcli.c global.h config.h unixtm.h mbuf.h cmdparse.h proc.h timer.h \
  417.   socket.h sockaddr.h netuser.h dirutil.h files.h 
  418. popserv.o : popserv.c global.h config.h unixtm.h mbuf.h cmdparse.h socket.h \
  419.   proc.h timer.h sockaddr.h files.h pop.h dirutil.h 
  420. ppp.o : ppp.c global.h config.h unixtm.h mbuf.h proc.h timer.h iface.h socket.h \
  421.   sockaddr.h internet.h ip.h slhc.h tcp.h netuser.h unixasy.h asy.h pktdrvr.h \
  422.   devparam.h ppp.h pppfsm.h ppplcp.h ppppap.h pppipcp.h trace.h 
  423. pppcmd.o : pppcmd.c global.h config.h unixtm.h mbuf.h iface.h proc.h timer.h \
  424.   socket.h sockaddr.h pktdrvr.h ppp.h pppfsm.h ppplcp.h ppppap.h pppipcp.h slhc.h \
  425.   ip.h internet.h tcp.h netuser.h cmdparse.h 
  426. pppdump.o : pppdump.c global.h config.h unixtm.h mbuf.h iface.h proc.h timer.h \
  427.   socket.h sockaddr.h internet.h ppp.h trace.h 
  428. pppfsm.o : pppfsm.c global.h config.h unixtm.h mbuf.h iface.h proc.h timer.h \
  429.   socket.h sockaddr.h ppp.h pppfsm.h ppplcp.h trace.h 
  430. pppipcp.o : pppipcp.c global.h config.h unixtm.h mbuf.h iface.h proc.h timer.h \
  431.   socket.h sockaddr.h slhc.h ip.h internet.h tcp.h netuser.h ppp.h pppfsm.h pppipcp.h \
  432.   cmdparse.h files.h trace.h 
  433. ppplcp.o : ppplcp.c global.h config.h unixtm.h mbuf.h iface.h proc.h timer.h \
  434.   socket.h sockaddr.h ppp.h pppfsm.h ppplcp.h ppppap.h cmdparse.h devparam.h trace.h 
  435. ppppap.o : ppppap.c global.h config.h unixtm.h mbuf.h proc.h timer.h iface.h \
  436.   socket.h sockaddr.h session.h hardware.h ftpcli.h ftp.h dirutil.h telnet.h ppp.h \
  437.   pppfsm.h ppplcp.h ppppap.h cmdparse.h files.h trace.h main.h 
  438. rarp.o : rarp.c global.h config.h unixtm.h mbuf.h proc.h timer.h iface.h socket.h \
  439.   sockaddr.h ax25.h ip.h internet.h lapb.h arp.h netuser.h cmdparse.h pktdrvr.h 
  440. rawcons.o : rawcons.c hardware.h global.h config.h unixtm.h proc.h mbuf.h timer.h \
  441.   socket.h sockaddr.h tty.h session.h ftpcli.h ftp.h dirutil.h telnet.h sessmgr.h 
  442. rdate.o : rdate.c global.h config.h unixtm.h mbuf.h socket.h proc.h timer.h \
  443.   sockaddr.h session.h hardware.h ftpcli.h ftp.h dirutil.h telnet.h netuser.h \
  444.   commands.h tty.h cmdparse.h 
  445. rip.o : rip.c global.h config.h unixtm.h mbuf.h netuser.h socket.h proc.h timer.h \
  446.   sockaddr.h udp.h iface.h internet.h ip.h rip.h arp.h 
  447. ripcmd.o : ripcmd.c global.h config.h unixtm.h mbuf.h netuser.h socket.h proc.h \
  448.   timer.h sockaddr.h internet.h cmdparse.h iface.h udp.h ip.h rip.h commands.h 
  449. ripdump.o : ripdump.c global.h config.h unixtm.h mbuf.h netuser.h socket.h proc.h \
  450.   timer.h sockaddr.h rip.h iface.h udp.h internet.h ip.h trace.h 
  451. rlogin.o : rlogin.c global.h config.h unixtm.h mbuf.h socket.h proc.h timer.h \
  452.   sockaddr.h session.h hardware.h ftpcli.h ftp.h dirutil.h telnet.h tty.h commands.h \
  453.   netuser.h 
  454. rspf.o : rspf.c global.h config.h unixtm.h mbuf.h proc.h timer.h netuser.h socket.h \
  455.   sockaddr.h internet.h pktdrvr.h iface.h ip.h ax25.h lapb.h arp.h icmp.h session.h \
  456.   hardware.h ftpcli.h ftp.h dirutil.h telnet.h rspf.h 
  457. rspfcmd.o : rspfcmd.c global.h config.h unixtm.h mbuf.h timer.h iface.h proc.h \
  458.   socket.h sockaddr.h cmdparse.h netuser.h rspf.h ip.h internet.h 
  459. rspfdump.o : rspfdump.c global.h config.h unixtm.h mbuf.h netuser.h socket.h \
  460.   proc.h timer.h sockaddr.h internet.h ip.h iface.h rspf.h trace.h 
  461. rspfhdr.o : rspfhdr.c global.h config.h unixtm.h mbuf.h internet.h ip.h iface.h \
  462.   proc.h timer.h socket.h sockaddr.h rspf.h 
  463. rwhodump.o : rwhodump.c global.h config.h unixtm.h mbuf.h trace.h iface.h proc.h \
  464.   timer.h socket.h sockaddr.h 
  465. session.o : session.c global.h config.h unixtm.h mbuf.h proc.h timer.h ftpcli.h \
  466.   ftp.h session.h hardware.h telnet.h dirutil.h icmp.h iface.h socket.h sockaddr.h \
  467.   internet.h ip.h tty.h cmdparse.h rlogin.h commands.h main.h 
  468. sessmgr.o : sessmgr.c global.h config.h unixtm.h hardware.h proc.h mbuf.h timer.h \
  469.   socket.h sockaddr.h tty.h session.h ftpcli.h ftp.h dirutil.h telnet.h sessmgr.h \
  470.   cmdparse.h commands.h 
  471. slhc.o : slhc.c global.h config.h unixtm.h mbuf.h internet.h ip.h iface.h proc.h \
  472.   timer.h socket.h sockaddr.h tcp.h netuser.h slhc.h 
  473. slhcdump.o : slhcdump.c global.h config.h unixtm.h mbuf.h internet.h ip.h iface.h \
  474.   proc.h timer.h socket.h sockaddr.h slhc.h tcp.h netuser.h trace.h 
  475. slip.o : slip.c global.h config.h unixtm.h mbuf.h iface.h proc.h timer.h socket.h \
  476.   sockaddr.h ip.h internet.h slhc.h tcp.h netuser.h asy.h slip.h trace.h 
  477. smisc.o : smisc.c global.h config.h unixtm.h netuser.h socket.h mbuf.h proc.h \
  478.   timer.h sockaddr.h remote.h smtp.h tcp.h iface.h internet.h ip.h nr4.h ax25.h \
  479.   lapb.h commands.h hardware.h mailbox.h tipmail.h 
  480. smtpcli.o : smtpcli.c global.h config.h unixtm.h mbuf.h cmdparse.h proc.h timer.h \
  481.   socket.h sockaddr.h lzw.h usock.h tcp.h iface.h internet.h ip.h netuser.h udp.h \
  482.   netrom.h ax25.h lapb.h nr4.h smtp.h dirutil.h commands.h session.h hardware.h \
  483.   ftpcli.h ftp.h telnet.h files.h 
  484. smtpserv.o : smtpserv.c global.h config.h unixtm.h mbuf.h cmdparse.h socket.h \
  485.   proc.h timer.h sockaddr.h lzw.h usock.h tcp.h iface.h internet.h ip.h netuser.h \
  486.   udp.h netrom.h ax25.h lapb.h nr4.h smtp.h commands.h dirutil.h mailbox.h tipmail.h \
  487.   mailutil.h bm.h domain.h session.h hardware.h ftpcli.h ftp.h telnet.h files.h 
  488. sockcmd.o : sockcmd.c global.h config.h unixtm.h mbuf.h proc.h timer.h lzw.h \
  489.   usock.h /usr/include/time.h tcp.h iface.h socket.h sockaddr.h internet.h ip.h \
  490.   netuser.h udp.h netrom.h ax25.h lapb.h nr4.h commands.h 
  491. socket.o : socket.c global.h config.h unixtm.h mbuf.h netuser.h socket.h proc.h \
  492.   timer.h sockaddr.h iface.h ip.h internet.h tcp.h udp.h ax25.h lapb.h netrom.h \
  493.   nr4.h lzw.h usock.h 
  494. sockuser.o : sockuser.c global.h config.h unixtm.h mbuf.h proc.h timer.h socket.h \
  495.   sockaddr.h lzw.h usock.h /usr/include/time.h tcp.h iface.h internet.h ip.h netuser.h \
  496.   udp.h netrom.h ax25.h lapb.h nr4.h session.h hardware.h ftpcli.h ftp.h dirutil.h \
  497.   telnet.h 
  498. sockutil.o : sockutil.c global.h config.h unixtm.h mbuf.h netuser.h socket.h \
  499.   proc.h timer.h sockaddr.h usock.h /usr/include/time.h lzw.h tcp.h iface.h internet.h \
  500.   ip.h udp.h netrom.h ax25.h lapb.h nr4.h 
  501. tcpcmd.o : tcpcmd.c global.h config.h unixtm.h timer.h mbuf.h netuser.h socket.h \
  502.   proc.h sockaddr.h internet.h tcp.h iface.h ip.h cmdparse.h commands.h /usr/include/ctype.h 
  503. tcpdump.o : tcpdump.c global.h config.h unixtm.h mbuf.h netuser.h socket.h proc.h \
  504.   timer.h sockaddr.h internet.h tcp.h iface.h ip.h trace.h 
  505. tcphdr.o : tcphdr.c global.h config.h unixtm.h mbuf.h tcp.h iface.h proc.h timer.h \
  506.   socket.h sockaddr.h internet.h ip.h netuser.h 
  507. tcpin.o : tcpin.c global.h config.h unixtm.h timer.h mbuf.h netuser.h socket.h \
  508.   proc.h sockaddr.h internet.h tcp.h iface.h ip.h icmp.h session.h hardware.h \
  509.   ftpcli.h ftp.h dirutil.h telnet.h 
  510. tcpout.o : tcpout.c global.h config.h unixtm.h timer.h mbuf.h netuser.h socket.h \
  511.   proc.h sockaddr.h internet.h tcp.h iface.h ip.h 
  512. tcpsubr.o : tcpsubr.c global.h config.h unixtm.h timer.h mbuf.h netuser.h socket.h \
  513.   proc.h sockaddr.h internet.h tcp.h iface.h ip.h 
  514. tcptimer.o : tcptimer.c global.h config.h unixtm.h mbuf.h timer.h netuser.h \
  515.   socket.h proc.h sockaddr.h internet.h tcp.h iface.h ip.h 
  516. tcpuser.o : tcpuser.c global.h config.h unixtm.h timer.h mbuf.h netuser.h socket.h \
  517.   proc.h sockaddr.h internet.h tcp.h iface.h ip.h icmp.h session.h hardware.h \
  518.   ftpcli.h ftp.h dirutil.h telnet.h 
  519. telnet.o : telnet.c global.h config.h unixtm.h mbuf.h socket.h proc.h timer.h \
  520.   sockaddr.h telnet.h session.h hardware.h ftpcli.h ftp.h dirutil.h tty.h commands.h \
  521.   netuser.h 
  522. timed.o : timed.c global.h config.h unixtm.h mbuf.h socket.h proc.h timer.h \
  523.   sockaddr.h session.h hardware.h ftpcli.h ftp.h dirutil.h telnet.h commands.h 
  524. timer.o : timer.c global.h config.h unixtm.h timer.h proc.h mbuf.h commands.h \
  525.   daemon.h hardware.h socket.h sockaddr.h 
  526. tip.o : tip.c global.h config.h unixtm.h mbuf.h proc.h timer.h iface.h socket.h \
  527.   sockaddr.h unixasy.h asy.h tty.h session.h hardware.h ftpcli.h ftp.h dirutil.h \
  528.   telnet.h commands.h devparam.h 
  529. tipmail.o : tipmail.c global.h config.h unixtm.h mbuf.h timer.h proc.h iface.h \
  530.   socket.h sockaddr.h unixasy.h asy.h usock.h /usr/include/time.h lzw.h tcp.h \
  531.   internet.h ip.h netuser.h udp.h netrom.h ax25.h lapb.h nr4.h telnet.h session.h \
  532.   hardware.h ftpcli.h ftp.h dirutil.h mailbox.h tipmail.h devparam.h 
  533. trace.o : trace.c global.h config.h unixtm.h mbuf.h iface.h proc.h timer.h socket.h \
  534.   sockaddr.h pktdrvr.h commands.h session.h hardware.h ftpcli.h ftp.h dirutil.h \
  535.   telnet.h trace.h cmdparse.h slip.h slhc.h ip.h internet.h tcp.h netuser.h 
  536. ttydriv.o : ttydriv.c global.h config.h unixtm.h mbuf.h session.h proc.h timer.h \
  537.   hardware.h ftpcli.h ftp.h dirutil.h telnet.h tty.h socket.h sockaddr.h 
  538. ttylink.o : ttylink.c global.h config.h unixtm.h mbuf.h socket.h proc.h timer.h \
  539.   sockaddr.h telnet.h session.h hardware.h ftpcli.h ftp.h dirutil.h tty.h mailbox.h \
  540.   ax25.h ip.h iface.h internet.h lapb.h tipmail.h commands.h 
  541. u2j.o : u2j.c 
  542. udp.o : udp.c global.h config.h unixtm.h mbuf.h netuser.h socket.h proc.h timer.h \
  543.   sockaddr.h iface.h udp.h internet.h ip.h icmp.h session.h hardware.h ftpcli.h \
  544.   ftp.h dirutil.h telnet.h 
  545. udpcmd.o : udpcmd.c global.h config.h unixtm.h mbuf.h netuser.h socket.h proc.h \
  546.   timer.h sockaddr.h udp.h iface.h internet.h ip.h cmdparse.h commands.h 
  547. udpdump.o : udpdump.c global.h config.h unixtm.h mbuf.h netuser.h socket.h proc.h \
  548.   timer.h sockaddr.h internet.h udp.h iface.h ip.h trace.h 
  549. udphdr.o : udphdr.c global.h config.h unixtm.h mbuf.h ip.h iface.h proc.h timer.h \
  550.   socket.h sockaddr.h internet.h udp.h netuser.h 
  551. unix.o : unix.c hardware.h global.h config.h unixtm.h timer.h proc.h mbuf.h \
  552.   socket.h sockaddr.h 
  553. unixasy.o : unixasy.c global.h config.h unixtm.h mbuf.h proc.h timer.h iface.h \
  554.   socket.h sockaddr.h asy.h unixasy.h hardware.h devparam.h 
  555. version.o : version.c config.h global.h unixtm.h mbuf.h socket.h proc.h timer.h \
  556.   sockaddr.h version.h commands.h 
  557. wildmat.o : wildmat.c global.h config.h unixtm.h 
  558. xmodem.o : xmodem.c global.h config.h unixtm.h dirutil.h timer.h socket.h mbuf.h \
  559.   proc.h sockaddr.h mailbox.h ax25.h ip.h iface.h internet.h lapb.h tipmail.h 
  560.